/* --- Zobrazení úrovně a stylu hry na produktu --- */
/* Desktop verze – obrázky pod hlavním obrázkem */
.product-duo-icons {
  display: flex;
  gap: 32px;
  margin: 24px 0 8px 0;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 36px;
}
.product-duo-icon {
  flex: 1 1 0;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  min-height: 88px;
  max-width: 320px;
}
.product-duo-icon img {
  display: block;
  max-height: 80px;
  width: auto;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .product-duo-icons { display: none; }
}

/* Mobilní verze – fixní lišta dole */
.sticky-product-icons-mobile {
  display: none;
}
@media (max-width: 900px) {
  .product-duo-icons {
    display: none !important;
  }
  .sticky-product-icons-mobile {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 9999;
    background: #fff;
    border-top: 1.5px solid #eee;
    box-shadow: 0 -2px 10px 0 rgba(0,0,0,0.04);
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px 0 6px 0;
    min-height: 80px;
    transition: box-shadow 0.2s;
  }
  .sticky-product-icons-mobile .icon {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    max-width: 120px;
    min-height: 72px;
    padding: 2px 0;    
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .sticky-product-icons-mobile .icon img {
    display: block;
    max-width: 90%;
    max-height: 72px;
    width: auto;
    height: auto;
  }
}

/* Mobil: mezera mezi bannery v zápatí */
@media (max-width: 575.98px){
  .footer-banners .footer-banner {
    margin-bottom: 10px;   /* nebo 12px podle oka */
  }
  /* poslední banner bez spodní mezery */
  .footer-banners .footer-banner:last-child {
    margin-bottom: 0;
  }
}